:: It is recommended to test the script on a local machine for its purpose and effects. :: ManageEngine Desktop Central will not be responsible for any :: damage/loss to the data/setup based on the behavior of the script. :: Description - Script to check IPv6 status :: Remarks - Enable Logging option must be selected to view status :: Configuration Type - Computer :: =========================================================================================================================== @echo off ipconfig | find "IPv6" IF %ERRORLEVEL% EQU 0 ( echo IPv6 enabled ) else ( echo IPv6 disabled )